crypto/tls.Conn.rawInput (field)
11 uses
crypto/tls (current package)
conn.go#L105: rawInput bytes.Buffer // raw input, starting with a record header
conn.go#L586: copy(err.RecordHeader[:], c.rawInput.Bytes())
conn.go#L633: if err == io.ErrUnexpectedEOF && c.rawInput.Len() == 0 {
conn.go#L641: hdr := c.rawInput.Bytes()[:recordHeaderLen]
conn.go#L688: record := c.rawInput.Next(recordHeaderLen + n)
conn.go#L823: if c.rawInput.Len() >= n {
conn.go#L826: needs := n - c.rawInput.Len()
conn.go#L830: c.rawInput.Grow(needs + bytes.MinRead)
conn.go#L831: _, err := c.rawInput.ReadFrom(&atLeastReader{r, int64(needs)})
conn.go#L1404: if n != 0 && c.input.Len() == 0 && c.rawInput.Len() > 0 &&
conn.go#L1405: recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |